* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #D5D5D5!important;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to right, gray, white); /* Ä°ki renkli geÃ§iÅŸ */
    z-index: 1000;
    padding: 10px 30px;
}

.navbar a {
    color:darkgray!important;
    font-size: 1.2rem;
    padding: 10px;
    text-decoration: none;
}

.navbar a:hover {
    color: #ffffff;
   
    transition: background-color 0.3s ease;
	background-color: transparent !important; /* Arkaplan rengini kaldir */
}

.navbar-toggler {
    border-color: gray!important;
}

.navbar-toggler-icon {
    background-color: gray!important;
}

.container {
    max-width: 1200px; /* MasaÃ¼stÃ¼nde geniÅŸliÄŸi sÄ±nÄ±rlÄ±yoruz */
    margin: 0 auto;
}
@media only screen and (max-width:760px){
	
	.navbar{
		background: linear-gradient(to right, gray, white); 
		position: fixed;
		top: 0; left: 0; width: 100%;
	    
	}
}

.navbar-brand{
	font-weight: 600;
	
}
.navbar li{
	margin-left: 10px;
}

.navbar li a img{
	opacity: 0.6;
	border-radius: 50%;
}

.navbar li a{
	font-size: 15px;
	color:black!important;
	font-weight: 400;
	letter-spacing: 1px;
	transition: 0.2s;
}
.navbar .navbar-nav .active>a,
.navbar .navbar-nav a:hover{
	color: white!important;
}

.navbar a img {
	border-radius: 50%;
	opacity: 0.6;
}

.navbar nav a span{
	color: darkgray!important;
}

.navbar-nav {
    display: flex;
    align-items: center;
    margin-right: auto; /* SaÄŸa yaslanmasÄ±nÄ± saÄŸlÄ±yoruz */
}

@media only screen and (max-width:768px){
	.bolum1{
		height: 850px;
	}
	h2{
		margin-top: 35px;
	}
	
}
.language-buttons {
      position: fixed;
      top: 20px;
      right: 20px;
	display: none;
    }
    /* Dil seÃ§imi dÃ¼ÄŸmelerinin boyutunu kÃ¼Ã§Ã¼lt */
    .language-buttons .btn {
      font-size: 12px;
      padding: 5px 10px;
		color: white!important;
    }
    /* Dil seÃ§imi dÃ¼ÄŸmelerindeki resimlerin boyutunu ayarla */
    .language-buttons img {
      width: 40px;
      height: 40px;
    }
@media (max-width: 768px) {
  .language-buttons {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px; /* Ä°stenilen bir boÅŸluk deÄŸeri verebilirsiniz */
  }
	}
.navbar .navbar-nav .language-buttons .btn  img:hover{
	transform: scale(1.4);
	background: rgba(80,80,80,0.3);
	border-radius: 35px;
	z-index: 2;
	transition: 0.9s;
	cursor: pointer;
}

/* Genel Ürün Sayfası Stili */
/* Genel stil */
/* Ürün Sayfası Konteyneri */
.product-page {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px; /* Alt boşluğu artırarak navbar ile çakışmayı engelliyoruz */
    margin-top: 80px; /* Üst boşluk eklendi, navbar ile çakışmayı engeller */
}

/* Ürün Konteyneri */
.product-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 20px 0; /* Padding ekleyerek üst ve alt boşluk sağlıyoruz */
    margin-bottom: 20px; /* Ürünler arasında boşluk ekliyoruz */
}

/* Ürün Resmi */
.product-image {
    flex: 1;
    max-width: 400px;
    margin-right: 20px; /* Sağ boşluk ekliyoruz */
}

.product-image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover; /* Görüntüde bozulma olmasın */
}

/* Ürün Bilgileri */
.product-info {
    flex: 1;
    text-align: center;
    margin-left: 20px; /* Sol boşluk ekliyoruz */
}

.product-info h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.product-description {
    font-size: 16px;
    color: #555;
}

.product-price {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
}

.add-to-cart {
    background-color: #777777;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}

.add-to-cart:hover {
    background-color: #A5A5A5;
}

/* Mobilde (768px ve altı) son sekmede yazıyı üste almak için */
@media (max-width: 768px) {
    .product-container {
        flex-direction: column;
    }

    .product-container:last-child {
        flex-direction: column-reverse;
    }

    .product-image {
        max-width: 100%;
    }

    .product-info {
        text-align: center;
    }
}
footer {
    background:#D8D8D8!important;
    color: white;
    padding: 20px 0;
}

.footer-logo img {
    width: 150px;
}

.sosyalmedya {
    display: flex;
    gap: 15px;
}

.sosyalmedya li {
    list-style: none;
}

.sosyalmedya a {
    color: white;
    font-size: 24px;
    transition: 0.3s;
}

.sosyalmedya a:hover {
    color: #ff6600;
}

.footer-links li {
    margin: 5px 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ff6600;
}
.video-section {
    padding: 60px 20px;
    background-color: #f8f8f8;
    text-align: center;
}

.video-title h2 {
    font-family: 'Alegreya', serif;
    font-size: 2.5rem;
    color: #e67e22;
    margin-bottom: 10px;
    animation: pulse 2s infinite;
}

.video-title p {
    font-size: 1.1rem;
    color: #444;
    max-width: 700px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
    100% { transform: scale(1); opacity: 1; }
}

.video-wrapper {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 oran (9/16 = 0.5625 = %56.25) */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
}
